home *** CD-ROM | disk | FTP | other *** search
/ Internet Info 1994 March / Internet Info CD-ROM (Walnut Creek) (March 1994).iso / networking / terms / tipx / libacu / Makefile < prev    next >
Encoding:
Makefile  |  1991-10-11  |  1.6 KB  |  64 lines

  1. #
  2. # Copyright (c) 1988 The Regents of the University of California.
  3. # All rights reserved.
  4. #
  5. # Redistribution and use in source and binary forms are permitted
  6. # provided that the above copyright notice and this paragraph are
  7. # duplicated in all such forms and that any documentation,
  8. # advertising materials, and other materials related to such
  9. # distribution and use acknowledge that the software was developed
  10. # by the University of California, Berkeley.  The name of the
  11. # University may not be used to endorse or promote products derived
  12. # from this software without specific prior written permission.
  13. # THIS SOFTWARE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
  14. # IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
  15. # WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR PURPOSE.
  16. #
  17. #    @(#)Makefile    5.4 (Berkeley) 9/2/88
  18. #
  19. # make file for tip device drivers
  20. #
  21. # Current drivers:
  22. #    BIZCOMP
  23. #    USR COURIER (2400 baud)
  24. #    DEC DF02-AC, DF03-AC
  25. #    DEC DN-11/Able Quadracall
  26. #    HAYES and Hayes emulators
  27. #    VENTEL 212+ (w/o echo)
  28. #    VADIC 831 RS232 adaptor
  29. #    VADIC 3451
  30. #    Hayes Smartmodem 2400
  31. #    Telebit Trailblazer
  32.  
  33. CFLAGS=    -O -I.. -DDEBUG
  34. LIBC=    /lib/libc.a
  35. SRCS=    biz22.c biz31.c courier.c df.c dn11.c hayes.c ventel.c v831.c v3451.c \
  36.     sm2400.c telebit.c
  37. OBJS=    biz22.o biz31.o courier.o df.o dn11.o hayes.o ventel.o v831.o v3451.o \
  38.     sm2400.o telebit.o
  39. MAN=
  40.  
  41. all: libacu.a
  42.  
  43. libacu.a: ${OBJS}
  44.     ar cu $@ ${OBJS}
  45.     ranlib $@
  46.  
  47. clean:
  48.     -rm -f ${OBJS} core libacu.a
  49.  
  50. cleandir: clean
  51.     -rm -f tags .depend
  52.  
  53. depend:
  54.     mkdep ${CFLAGS} ${SRCS}
  55.  
  56. install:
  57.  
  58. lint:
  59.     lint ${CFLAGS} ${SRCS}
  60.  
  61. tags:
  62.     ctags ${SRCS}
  63.  
  64.